home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / TERM32._M_ < prev    next >
Text File  |  1997-05-22  |  1KB  |  44 lines

  1. #
  2. # Microsoft makefile for TERM [Win32]
  3. # Requires WSC32.LIB, MIO32.LIB, & XYDRIV32.LIB
  4. #
  5. # To use: "nmake term32._m_"
  6. #
  7.  
  8. CCFLAGS = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
  9.  
  10. term.exe: term.res term.obj term.def wsc32.lib mio32.lib xydriv32.lib \
  11.             about.obj accept.obj line.obj config.obj menu.obj paint.obj \
  12.             sioerror.obj ansi.obj
  13.     link term paint line about accept config menu sioerror ansi wsc32.lib mio32.lib xydriv32.lib kernel32.lib user32.lib gdi32.lib term.res
  14.  
  15. term.res: term.rc
  16.     rc -dWIN32 term.rc
  17.  
  18. about.obj: about.c about.h
  19.    cl $(CCFLAGS)  about.c
  20.  
  21. accept.obj: accept.c accept.h
  22.    cl $(CCFLAGS)  accept.c
  23.  
  24. ansi.obj: ansi.c ansi.h
  25.    cl $(CCFLAGS)  ansi.c
  26.  
  27. term.obj: term.c term.h wsc.h
  28.    cl $(CCFLAGS)  term.c
  29.  
  30. sioerror.obj: sioerror.c sioerror.h wsc.h
  31.    cl $(CCFLAGS)  sioerror.c
  32.  
  33. paint.obj: paint.c paint.h
  34.    cl $(CCFLAGS)  paint.c
  35.  
  36. line.obj: line.c line.h wsc.h
  37.    cl $(CCFLAGS)  line.c
  38.  
  39. config.obj: config.c config.h wsc.h
  40.    cl $(CCFLAGS)  config.c
  41.  
  42. menu.obj: menu.c menu.h wsc.h
  43.    cl $(CCFLAGS)  menu.c
  44.